home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / extplugin.jar / com / extensibility / plugin / api / URIVersionedAccess.class (.txt) < prev   
Encoding:
Java Class File  |  2000-07-31  |  804 b   |  26 lines

  1. package com.extensibility.plugin.api;
  2.  
  3. import java.io.Writer;
  4.  
  5. public interface URIVersionedAccess {
  6.    int CHECKOUT_OK = 0;
  7.    int CHECKOUT_ERR_CHECKED_OUT = 1;
  8.    int CHECKOUT_ERR_OLDER_VERSION = 2;
  9.    int CHECKOUT_FAILED = 3;
  10.    int CHECKIN_OK = 0;
  11.    int UNCHECKOUT_OK = 0;
  12.    int UNCHECKOUT_FAILED = 0;
  13.    int CHECKIN_ERR_INACCESSIBLE = 1;
  14.    int CHECKIN_ERR_CONFLICTS = 2;
  15.  
  16.    int checkoutItem() throws Exception;
  17.  
  18.    Writer checkinItem() throws Exception;
  19.  
  20.    int uncheckoutItem() throws Exception;
  21.  
  22.    boolean isCheckedOut();
  23.  
  24.    void presetSaveInformation(String var1, String var2, String var3);
  25. }
  26.